/* ============================================================
   ABOUT US PAGE STYLES
   Sab kuch #aboutPage ke andar scope hai — is se koi bhi
   dusra page (home, package, cheap, all-inclusive) disturb
   nahi hoga, chahe class name kahin aur bhi use ho.
   ============================================================ */

#aboutPage {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a1a;
  /* Navbar fixed hai (~80px height) — is padding ke bina content
     navbar ke peeche chup jayega. Ye zaroori hai, design change nahi. */
  padding-top: 96px;
}

@media (max-width: 640px) {
  #aboutPage {
    padding-top: 76px;
  }
}

#aboutPage .glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#aboutPage .hero-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ accordion smooth open/close */
#aboutPage .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
#aboutPage .faq-content.open{

max-height:1000px;

opacity:1;

}

/* Fade-in animation for hero section */
@keyframes aboutFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
#aboutPage .animate-fade-in {
  animation: aboutFadeIn 0.6s ease-out forwards;
}

#aboutPage ::selection {
  background: #171717;
  color: #ffffff;
}